home *** CD-ROM | disk | FTP | other *** search
/ Linux Cubed Series 4: GNU Archives / Linux Cubed Series 4 - GNU Archives.iso / gnu / automake.0 / automake / automake-1.0 / tests / number.test < prev    next >
Encoding:
Text File  |  1996-05-18  |  269 b   |  16 lines

  1. #! /bin/sh
  2.  
  3. # Test to make sure _OBJECTS only generated once.  Bug reported by
  4. # Joerg-Martin Schwarz.
  5.  
  6. . $srcdir/defs || exit 1
  7.  
  8. cat > Makefile.am << 'END'
  9. bin_PROGRAMS = zardoz
  10. END
  11.  
  12. $AUTOMAKE || exit 1
  13.  
  14. count=`grep -c '^zardoz_OBJECTS' Makefile.in`
  15. test $count -eq 1
  16.